/*!

* Template : nmoban100

* Frame    : WUI 3.0.1

* Created  : 2021-12-01

* Updated  : 2021-12-02

* Author   : lzx

*/
@-webkit-keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fade-out {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes modal-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes modal-in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes modal-out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes modal-out {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@-webkit-keyframes drawer-in-right {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes drawer-in-right {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes drawer-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes drawer-out-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@-webkit-keyframes drawer-in-left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes drawer-in-left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes drawer-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes drawer-out-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@-webkit-keyframes drawer-in-top {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes drawer-in-top {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes drawer-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes drawer-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@-webkit-keyframes dialog-in {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes dialog-in {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes dialog-out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes dialog-out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

.wui-form .wui-form-item {
    position: relative;
    line-height: 1
}

.wui-form .wui-form-item .wui-form-widget {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px
}

.wui-form .wui-form-item .wui-form-message {
    display: block;
    position: absolute;
    max-width: 100%;
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: #FE5050
}

.wui-form .wui-form-item.error .wui-input,
.wui-form .wui-form-item.error .wui-textarea,
.wui-form .wui-form-item.error .wui-select>.select-input,
.wui-form .wui-form-item.error .wui-tags>.select-input {
    border-color: #FE5050
}

.wui-form .wui-form-item.error .wui-input:focus,
.wui-form .wui-form-item.error .wui-textarea:focus,
.wui-form .wui-form-item.error .wui-select>.select-input:focus,
.wui-form .wui-form-item.error .wui-tags>.select-input:focus {
    -webkit-box-shadow: 0 0 0 3px #fee;
    box-shadow: 0 0 0 3px #fee
}

.wui-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-image: none;
    outline: none;
    cursor: pointer;
    appearance: none;
    text-decoration: none;
    user-select: none;
    text-align: center;
    font-weight: 500;
    word-spacing: normal;
    white-space: nowrap;
    color: #333;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    height: 32px;
    line-height: 30px;
    padding: 0 16px;
    font-size: 14px
}

.wui-btn:hover,
.wui-btn:focus,
.wui-btn:active {
    color: #333;
    background-color: #f5f5f5
}

.wui-btn:disabled {
    color: #bfbfbf;
    border-color: #d9d9d9;
    background-color: #fff;
    cursor: not-allowed
}

.wui-btn.active .icon-shopping-cart {
    color: #FE5050
}

.wui-btn.active .icon-shopping-cart:before {
    content: "\ee9d" !important
}

.wui-btn.active .icon-wish-list {
    color: #FE5050
}

.wui-btn.active .icon-wish-list:before {
    content: "\ef9b" !important
}

.wui-btn.wui-btn-animate:hover:before {
    width: 30px;
    opacity: 1
}

.wui-btn.wui-btn-animate:hover>i {
    -webkit-transform: translate(8px, 0);
    transform: translate(8px, 0)
}

.wui-btn.wui-btn-primary {
    color: #fff;
    border-color: #0058B2;
    background-color: #0058B2
}

.wui-btn.wui-btn-primary:hover,
.wui-btn.wui-btn-primary:focus,
.wui-btn.wui-btn-primary:active {
    color: #fff;
    border-color: #a33e1e;
    background-color: #a33e1e
}

.wui-btn.wui-btn-primary:disabled {
    color: #fff;
    border-color: #d67151;
    background-color: #d67151
}

.wui-btn.wui-btn-accents {
    color: #fff;
    border-color: #0058B2;
    background-color: #0058B2
}

.wui-btn.wui-btn-accents:hover,
.wui-btn.wui-btn-accents:focus,
.wui-btn.wui-btn-accents:active {
    color: #fff;
    border-color: #648c28;
    background-color: #648c28
}

.wui-btn.wui-btn-accents:disabled {
    color: #fff;
    border-color: #97bf5b;
    background-color: #97bf5b
}

.wui-btn.wui-btn-price {
    color: #fff;
    border-color: #0058B2;
    background-color: #0058B2
}

.wui-btn.wui-btn-price:hover,
.wui-btn.wui-btn-price:focus,
.wui-btn.wui-btn-price:active {
    color: #fff;
    border-color: #6a952b;
    background-color: #6a952b
}

.wui-btn.wui-btn-price:disabled {
    color: #fff;
    border-color: #91bb51;
    background-color: #91bb51
}

.wui-btn.wui-btn-light {
    color: #333;
    border-color: #fff;
    background-color: #fff
}

.wui-btn.wui-btn-light:hover,
.wui-btn.wui-btn-light:focus,
.wui-btn.wui-btn-light:active {
    color: #333;
    border-color: #d9d9d9;
    background-color: #d9d9d9
}

.wui-btn.wui-btn-light:disabled {
    color: #333;
    border-color: #fff;
    background-color: #fff
}

.wui-btn.wui-btn-block {
    display: block;
    width: 100%
}

.wui-btn.wui-btn-square {
    border-radius: 0 !important
}

.wui-btn.wui-btn-loading>.icon-loading {
    display: none
}

.wui-btn.wui-btn-loading.loading>i:not(.icon-loading) {
    display: none
}

.wui-btn.wui-btn-loading.loading>.icon-loading {
    display: inline-block;
    -webkit-animation: btn-loading 0.6s linear infinite both;
    animation: btn-loading 0.6s linear infinite both
}

.wui-btn.wui-btn-sm {
    height: 32px;
    line-height: 30px;
    padding: 0 16px;
    font-size: 14px
}

.wui-btn.wui-btn-sm.wui-btn-animate:hover:before {
    width: 30px;
    opacity: 1
}

.wui-btn.wui-btn-sm.wui-btn-animate:hover>i {
    -webkit-transform: translate(8px, 0);
    transform: translate(8px, 0)
}

.wui-btn.wui-btn-md {
    height: 40px;
    line-height: 38px;
    padding: 0 32px;
    font-size: 16px
}

.wui-btn.wui-btn-md.wui-btn-animate:hover:before {
    width: 38px;
    opacity: 1
}

.wui-btn.wui-btn-md.wui-btn-animate:hover>i {
    -webkit-transform: translate(21px, 0);
    transform: translate(21px, 0)
}

@media only screen and (min-width: 1024px) {
    .wui-btn.wui-btn-block\@S {
        display: block;
        width: 100%
    }

    .wui-btn.wui-btn-sm\@S {
        height: 32px;
        line-height: 30px;
        padding: 0 16px;
        font-size: 14px
    }

    .wui-btn.wui-btn-sm\@S.wui-btn-animate:hover:before {
        width: 30px;
        opacity: 1
    }

    .wui-btn.wui-btn-sm\@S.wui-btn-animate:hover>i {
        -webkit-transform: translate(8px, 0);
        transform: translate(8px, 0)
    }

    .wui-btn.wui-btn-md\@S {
        height: 40px;
        line-height: 38px;
        padding: 0 32px;
        font-size: 16px
    }

    .wui-btn.wui-btn-md\@S.wui-btn-animate:hover:before {
        width: 38px;
        opacity: 1
    }

    .wui-btn.wui-btn-md\@S.wui-btn-animate:hover>i {
        -webkit-transform: translate(21px, 0);
        transform: translate(21px, 0)
    }
}

@-webkit-keyframes btn-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes btn-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.wui-input {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: border-color .3s ease 0s;
    transition: border-color .3s ease 0s;
    background-image: none;
    outline: none;
    text-align: left;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    border-color: #d9d9d9;
    color: #333;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    height: 32px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 14px
}

.wui-input:hover {
    border-color: #0058B2
}

.wui-input:focus {
    border-color: #0058B2;
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb
}

.wui-input.success:hover {
    border-color: #26BB79
}

.wui-input.success:focus {
    border-color: #26BB79;
    -webkit-box-shadow: 0 0 0 3px #e9f8f2;
    box-shadow: 0 0 0 3px #e9f8f2
}

.wui-input.warning:hover {
    border-color: #F2914A
}

.wui-input.warning:focus {
    border-color: #F2914A;
    -webkit-box-shadow: 0 0 0 3px #fef4ed;
    box-shadow: 0 0 0 3px #fef4ed
}

.wui-input.error:hover {
    border-color: #FE5050
}

.wui-input.error:focus {
    border-color: #FE5050;
    -webkit-box-shadow: 0 0 0 3px #fee;
    box-shadow: 0 0 0 3px #fee
}

.wui-input.wui-input-block {
    display: block;
    width: 100%
}

.wui-input:disabled {
    background-color: #f5f5f5 !important;
    color: #bfbfbf !important;
    cursor: not-allowed !important;
    border-color: #d9d9d9 !important
}

.wui-input.wui-input-sm {
    height: 32px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 14px
}

.wui-input.wui-input-md {
    height: 40px;
    line-height: 38px;
    padding: 0 12px;
    font-size: 16px
}

@media only screen and (min-width: 1024px) {
    .wui-input.wui-input-block\@S {
        display: block;
        width: 100%
    }

    .wui-input.wui-input-sm\@S {
        height: 32px;
        line-height: 30px;
        padding: 0 8px;
        font-size: 14px
    }

    .wui-input.wui-input-md\@S {
        height: 40px;
        line-height: 38px;
        padding: 0 12px;
        font-size: 16px
    }
}

.wui-textarea {
    display: block;
    border: 1px solid #d9d9d9;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    resize: none;
    outline: none;
    width: 100%;
    padding: 8px 12px;
    background-color: #fff;
    overflow-y: auto;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.wui-textarea:hover {
    border-color: #0058B2
}

.wui-textarea:focus {
    border-color: #0058B2;
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb
}

.wui-textarea.error {
    border-color: #FE5050
}

.wui-textarea.error:focus {
    -webkit-box-shadow: 0 0 0 3px #fee;
    box-shadow: 0 0 0 3px #fee
}

.wui-grid>.wui-grid-row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.wui-grid>.wui-grid-row>.wui-grid-col {
    -webkit-flex: none;
    flex: none;
    width: 100%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-2 {
    width: 50%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-3 {
    width: 33.3333333333%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-3 {
    width: 66.6666666667%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-4 {
    width: 25%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-4 {
    width: 75%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-5 {
    width: 20%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-5 {
    width: 40%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-5 {
    width: 60%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-5 {
    width: 80%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-6 {
    width: 16.6666666667%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-6 {
    width: 66.6666666667%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-5-6 {
    width: 83.3333333333%
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-auto {
    width: auto
}

.wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-match {
    width: 100%
}

.wui-grid.wui-grid-xs>.wui-grid-row {
    margin: -16px 0 0 -16px
}

.wui-grid.wui-grid-xs>.wui-grid-row>.wui-grid-col {
    padding: 16px 0 0 16px
}

.wui-grid.wui-grid-sm>.wui-grid-row {
    margin: -24px 0 0 -24px
}

.wui-grid.wui-grid-sm>.wui-grid-row>.wui-grid-col {
    padding: 24px 0 0 24px
}

.wui-grid.wui-grid-md>.wui-grid-row {
    margin: -32px 0 0 -32px
}

.wui-grid.wui-grid-md>.wui-grid-row>.wui-grid-col {
    padding: 32px 0 0 32px
}

.wui-grid.wui-grid-lg>.wui-grid-row {
    margin: -40px 0 0 -40px
}

.wui-grid.wui-grid-lg>.wui-grid-row>.wui-grid-col {
    padding: 40px 0 0 40px
}

@media only screen and (min-width: 1024px) {
    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-2\@S {
        width: 50%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-3\@S {
        width: 33.3333333333%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-3\@S {
        width: 66.6666666667%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-4\@S {
        width: 25%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-4\@S {
        width: 75%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-5\@S {
        width: 20%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-2-5\@S {
        width: 40%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-3-5\@S {
        width: 60%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-5\@S {
        width: 80%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-1-6\@S {
        width: 16.6666666667%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-4-6\@S {
        width: 66.6666666667%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-5-6\@S {
        width: 83.3333333333%
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-auto\@S {
        width: auto
    }

    .wui-grid>.wui-grid-row>.wui-grid-col.wui-grid-col-match\@S {
        width: 100%
    }

    .wui-grid.wui-grid-xs\@S>.wui-grid-row {
        margin: -16px 0 0 -16px
    }

    .wui-grid.wui-grid-xs\@S>.wui-grid-row>.wui-grid-col {
        padding: 16px 0 0 16px
    }

    .wui-grid.wui-grid-sm\@S>.wui-grid-row {
        margin: -24px 0 0 -24px
    }

    .wui-grid.wui-grid-sm\@S>.wui-grid-row>.wui-grid-col {
        padding: 24px 0 0 24px
    }

    .wui-grid.wui-grid-md\@S>.wui-grid-row {
        margin: -32px 0 0 -32px
    }

    .wui-grid.wui-grid-md\@S>.wui-grid-row>.wui-grid-col {
        padding: 32px 0 0 32px
    }

    .wui-grid.wui-grid-lg\@S>.wui-grid-row {
        margin: -40px 0 0 -40px
    }

    .wui-grid.wui-grid-lg\@S>.wui-grid-row>.wui-grid-col {
        padding: 40px 0 0 40px
    }
}

.wui-media {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    background-color: #eee
}

.wui-media .wui-media-wrap {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.wui-media .wui-media-wrap .wui-media-inner,
.wui-media .wui-media-wrap .wui-media-img {
    display: block;
    width: 100%;
    height: 100%
}

.wui-media .wui-media-wrap .wui-media-inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.wui-media .wui-media-wrap .wui-media-img {
    border: 0;
    background: none;
    object-fit: cover;
    object-position: center
}

.wui-media .wui-media-mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5)
}

.wui-media.wui-media-hover {
    cursor: pointer
}

.wui-media.wui-media-hover:hover {
    border-color: #0058B2
}

.wui-media.wui-media-hover:hover .wui-media-wrap {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1)
}

.wui-media.wui-media-auto .wui-media-wrap .wui-media-inner {
    background-size: contain
}

.wui-media.wui-media-auto .wui-media-wrap .wui-media-img {
    object-fit: contain
}

.wui-media.wui-media-repeat .wui-media-wrap .wui-media-inner {
    background-repeat: repeat;
    background-size: auto
}

.wui-media.wui-media-tran {
    background-color: transparent
}

.wui-media.wui-media-border {
    border: 1px solid #d9d9d9
}

.wui-media.wui-media-fixed .wui-media-wrap .wui-media-inner {
    background-attachment: fixed
}

.wui-media.wui-media-match {
    padding-bottom: 0;
    height: 100%
}

.wui-media.wui-media-1-1 {
    padding-bottom: 100%
}

.wui-media.wui-media-2-1 {
    padding-bottom: 50%
}

.wui-media.wui-media-3-2 {
    padding-bottom: 66.6666666667%
}

.wui-media.wui-media-3-1 {
    padding-bottom: 33.3333333333%
}

.wui-media.wui-media-3-4 {
    padding-bottom: 133.3333333333%
}

.wui-media.wui-media-4-1 {
    padding-bottom: 25%
}

.wui-media.wui-media-4-3 {
    padding-bottom: 75%
}

.wui-media.wui-media-4-5 {
    padding-bottom: 125%
}

.wui-media.wui-media-6-1 {
    padding-bottom: 26.6666666667%
}

.wui-media.wui-media-16-9 {
    padding-bottom: 56.25%
}

@media only screen and (min-width: 1024px) {
    .wui-media.wui-media-1-1\@S {
        padding-bottom: 100%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-2-1\@S {
        padding-bottom: 50%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-3-2\@S {
        padding-bottom: 66.6666666667%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-3-1\@S {
        padding-bottom: 33.3333333333%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-3-4\@S {
        padding-bottom: 133.3333333333%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-4-1\@S {
        padding-bottom: 25%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-4-3\@S {
        padding-bottom: 75%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-4-5\@S {
        padding-bottom: 125%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-6-1\@S {
        padding-bottom: 26.6666666667%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }

    .wui-media.wui-media-16-9\@S {
        padding-bottom: 56.25%
    }

    .wui-media.wui-media-match\@S {
        padding-bottom: 0;
        height: 100%
    }
}

.wui-icon {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    overflow: hidden;
    text-align: center;
    font-style: normal;
    line-height: 1
}

.wui-icon.wui-icon-20 {
    width: 20px;
    height: 20px
}

.wui-icon.wui-icon-20>i {
    font-size: 20px
}

.wui-icon.wui-icon-20>svg {
    width: 20px;
    height: 20px
}

.wui-icon.wui-icon-24 {
    width: 24px;
    height: 24px
}

.wui-icon.wui-icon-24>i {
    font-size: 24px
}

.wui-icon.wui-icon-24>svg {
    width: 24px;
    height: 24px
}

.wui-icon.wui-icon-32 {
    width: 32px;
    height: 32px
}

.wui-icon.wui-icon-32>i {
    font-size: 32px
}

.wui-icon.wui-icon-32>svg {
    width: 32px;
    height: 32px
}

.wui-icon.wui-icon-40 {
    width: 40px;
    height: 40px
}

.wui-icon.wui-icon-40>i {
    font-size: 40px
}

.wui-icon.wui-icon-40>svg {
    width: 40px;
    height: 40px
}

.wui-icon.wui-icon-64 {
    width: 64px;
    height: 64px
}

.wui-icon.wui-icon-64>i {
    font-size: 64px
}

.wui-icon.wui-icon-64>svg {
    width: 64px;
    height: 64px
}

.wui-icon.wui-icon-96 {
    width: 96px;
    height: 96px
}

.wui-icon.wui-icon-96>i {
    font-size: 96px
}

.wui-icon.wui-icon-96>svg {
    width: 96px;
    height: 96px
}

@media only screen and (min-width: 1024px) {
    .wui-icon.wui-icon-20\@S {
        width: 20px;
        height: 20px
    }

    .wui-icon.wui-icon-20\@S>i {
        font-size: 20px
    }

    .wui-icon.wui-icon-20\@S>svg {
        width: 20px;
        height: 20px
    }

    .wui-icon.wui-icon-24\@S {
        width: 24px;
        height: 24px
    }

    .wui-icon.wui-icon-24\@S>i {
        font-size: 24px
    }

    .wui-icon.wui-icon-24\@S>svg {
        width: 24px;
        height: 24px
    }

    .wui-icon.wui-icon-32\@S {
        width: 32px;
        height: 32px
    }

    .wui-icon.wui-icon-32\@S>i {
        font-size: 32px
    }

    .wui-icon.wui-icon-32\@S>svg {
        width: 32px;
        height: 32px
    }

    .wui-icon.wui-icon-40\@S {
        width: 40px;
        height: 40px
    }

    .wui-icon.wui-icon-40\@S>i {
        font-size: 40px
    }

    .wui-icon.wui-icon-40\@S>svg {
        width: 40px;
        height: 40px
    }

    .wui-icon.wui-icon-64\@S {
        width: 64px;
        height: 64px
    }

    .wui-icon.wui-icon-64\@S>i {
        font-size: 64px
    }

    .wui-icon.wui-icon-64\@S>svg {
        width: 64px;
        height: 64px
    }

    .wui-icon.wui-icon-96\@S {
        width: 96px;
        height: 96px
    }

    .wui-icon.wui-icon-96\@S>i {
        font-size: 96px
    }

    .wui-icon.wui-icon-96\@S>svg {
        width: 96px;
        height: 96px
    }
}

.wui-lang {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: 0 24px;
    background-image: url("../images/icon_flag.png")
}

.wui-lang.wui-lang-ar {
    background-position: 0 0px
}

.wui-lang.wui-lang-bn {
    background-position: 0 -24px
}

.wui-lang.wui-lang-bul {
    background-position: 0 -48px
}

.wui-lang.wui-lang-cn {
    background-position: 0 -72px
}

.wui-lang.wui-lang-cs {
    background-position: 0 -96px
}

.wui-lang.wui-lang-dan {
    background-position: 0 -120px
}

.wui-lang.wui-lang-de {
    background-position: 0 -144px
}

.wui-lang.wui-lang-el {
    background-position: 0 -168px
}

.wui-lang.wui-lang-en {
    background-position: 0 -192px
}

.wui-lang.wui-lang-es {
    background-position: 0 -216px
}

.wui-lang.wui-lang-est {
    background-position: 0 -240px
}

.wui-lang.wui-lang-fa {
    background-position: 0 -264px
}

.wui-lang.wui-lang-fin {
    background-position: 0 -288px
}

.wui-lang.wui-lang-fr {
    background-position: 0 -312px
}

.wui-lang.wui-lang-he {
    background-position: 0 -336px
}

.wui-lang.wui-lang-hi {
    background-position: 0 -360px
}

.wui-lang.wui-lang-hr {
    background-position: 0 -384px
}

.wui-lang.wui-lang-hu {
    background-position: 0 -408px
}

.wui-lang.wui-lang-id {
    background-position: 0 -432px
}

.wui-lang.wui-lang-it {
    background-position: 0 -456px
}

.wui-lang.wui-lang-ja {
    background-position: 0 -480px
}

.wui-lang.wui-lang-ko {
    background-position: 0 -504px
}

.wui-lang.wui-lang-lt {
    background-position: 0 -528px
}

.wui-lang.wui-lang-ms {
    background-position: 0 -552px
}

.wui-lang.wui-lang-nl {
    background-position: 0 -576px
}

.wui-lang.wui-lang-no {
    background-position: 0 -600px
}

.wui-lang.wui-lang-pl {
    background-position: 0 -624px
}

.wui-lang.wui-lang-pt {
    background-position: 0 -648px
}

.wui-lang.wui-lang-rom {
    background-position: 0 -672px
}

.wui-lang.wui-lang-ru {
    background-position: 0 -696px
}

.wui-lang.wui-lang-sk {
    background-position: 0 -720px
}

.wui-lang.wui-lang-slo {
    background-position: 0 -744px
}

.wui-lang.wui-lang-swe {
    background-position: 0 -768px
}

.wui-lang.wui-lang-th {
    background-position: 0 -792px
}

.wui-lang.wui-lang-tr {
    background-position: 0 -816px
}

.wui-lang.wui-lang-tw {
    background-position: 0 -840px
}

.wui-lang.wui-lang-uk {
    background-position: 0 -864px
}

.wui-lang.wui-lang-ur {
    background-position: 0 -888px
}

.wui-lang.wui-lang-vi {
    background-position: 0 -912px
}

.wui-lang.wui-lang-te {
    background-position: 0 -936px
}

.wui-lang.wui-lang-ta {
    background-position: 0 -960px
}

.wui-lang.wui-lang-sr {
    background-position: 0 -984px
}

.wui-lang.wui-lang-tl {
    background-position: 0 -1008px
}

.wui-lang.wui-lang-is {
    background-position: 0 -1032px
}

.wui-lang.wui-lang-ca {
    background-position: 0 -1056px
}

.wui-lang.wui-lang-lv {
    background-position: 0 -1080px
}

.wui-payment {
    display: inline-block;
    width: 128px;
    height: 32px;
    background-size: 128px auto;
    background-repeat: no-repeat;
    background-position: 0 32px;
    background-image: url("../images/icon_payment.png")
}

.wui-payment.wui-payment-paypal {
    background-position: 0 0px
}

.wui-payment.wui-payment-visa {
    background-position: 0 -32px
}

.wui-payment.wui-payment-master-card {
    background-position: 0 -64px
}

.wui-dropdown {
    position: relative
}

.wui-dropdown>.wui-dropdown-toggle {
    line-height: 1;
    font-size: 0;
    cursor: pointer;
    position: relative;
    padding-right: 20px
}

.wui-dropdown>.wui-dropdown-toggle:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 2px;
    margin-top: -6px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    width: 9px;
    height: 9px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.wui-dropdown>.wui-dropdown-content {
    display: none;
    position: absolute;
    z-index: 10006;
    left: 0;
    right: auto;
    min-width: 180px;
    max-width: 240px
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #f0f0f0
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar-track {
    background-color: transparent
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar-thumb {
    background-color: #d9d9d9
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list::-webkit-scrollbar-thumb:hover {
    background-color: #c3c3c3
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item {
    position: relative;
    display: block;
    white-space: nowrap;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    text-align: left
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-icon {
    position: absolute;
    left: 16px;
    top: 8px;
    display: none;
    width: 24px;
    height: 24px
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-text {
    display: block;
    font-size: 15px;
    line-height: 24px;
    padding: 8px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item:last-child {
    border: 0
}

.wui-dropdown>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item:hover {
    background-color: #f2f2f2
}

.wui-dropdown.wui-dropdown-right>.wui-dropdown-content {
    left: auto;
    right: 0
}

.wui-dropdown.wui-dropdown-float>.wui-dropdown-toggle:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 10px;
    margin-top: -5px
}

.wui-dropdown.wui-dropdown-float>.wui-dropdown-content {
    left: 100%;
    top: 0
}

.wui-dropdown.wui-dropdown-overflow>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list {
    max-height: 320px;
    overflow-y: auto
}

.wui-dropdown.wui-dropdown-with-icon>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-icon {
    display: block
}

.wui-dropdown.wui-dropdown-with-icon>.wui-dropdown-content>.wui-dropdown-wrap>.wui-dropdown-list>.wui-dropdown-item .wui-dropdown-text {
    padding-left: 48px
}

.wui-dropdown:hover>.wui-dropdown-content {
    display: block
}

.wui-drawer-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    overflow: hidden auto
}

.wui-drawer-wrap .wui-drawer {
    width: 90%;
    max-width: 400px;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05)
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd {
    -webkit-flex: none;
    flex: none;
    background-color: #fff;
    position: relative
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-title {
    display: block;
    font-size: 18px;
    line-height: 32px;
    height: 64px;
    padding: 16px 48px 16px 16px
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 0;
    padding: 8px;
    color: #999;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close .wui-drawer-close-icon {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
    overflow: hidden
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close .wui-drawer-close-icon>i {
    font-size: 16px
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-hd .wui-drawer-close:hover {
    color: #0058B2
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-bd {
    -webkit-flex: auto;
    flex: auto;
    padding: 0 16px;
    overflow: hidden auto
}

.wui-drawer-wrap .wui-drawer .wui-drawer-content .wui-drawer-ft {
    -webkit-flex: none;
    flex: none;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
    padding: 16px
}

.wui-drawer-wrap .wui-drawer.wui-drawer-left {
    right: auto;
    left: 0
}

.wui-drawer-wrap .wui-drawer.wui-drawer-top {
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    width: auto;
    max-width: none
}

.wui-drawer-wrap.drawer-in {
    -webkit-animation: fade-in .3s ease 0s both;
    animation: fade-in .3s ease 0s both
}

.wui-drawer-wrap.drawer-in .wui-drawer {
    -webkit-animation: drawer-in-right .3s ease .2s both;
    animation: drawer-in-right .3s ease .2s both
}

.wui-drawer-wrap.drawer-in .wui-drawer.wui-drawer-left {
    -webkit-animation: drawer-in-left .3s ease .2s both;
    animation: drawer-in-left .3s ease .2s both
}

.wui-drawer-wrap.drawer-in .wui-drawer.wui-drawer-top {
    -webkit-animation: drawer-in-top .3s ease .2s both;
    animation: drawer-in-top .3s ease .2s both
}

.wui-drawer-wrap.drawer-out {
    -webkit-animation: fade-out .3s ease .2s both;
    animation: fade-out .3s ease .2s both
}

.wui-drawer-wrap.drawer-out .wui-drawer {
    -webkit-animation: drawer-out-right .3s ease 0s both;
    animation: drawer-out-right .3s ease 0s both
}

.wui-drawer-wrap.drawer-out .wui-drawer.wui-drawer-left {
    -webkit-animation: drawer-out-left .3s ease 0s both;
    animation: drawer-out-left .3s ease 0s both
}

.wui-drawer-wrap.drawer-out .wui-drawer.wui-drawer-top {
    -webkit-animation: drawer-out-top .3s ease 0s both;
    animation: drawer-out-top .3s ease 0s both
}

.wui-alert {
    padding: 12px;
    color: #333;
    border-left: 4px solid #0058B2
}

.wui-alert .wui-alert-content {
    font-size: 16px;
    line-height: 24px
}

.wui-alert .wui-alert-content .wui-alert-link {
    display: none;
    float: right;
    color: #1890FF
}

.wui-alert.wui-alert-with-link .wui-alert-content:before,
.wui-alert.wui-alert-with-link .wui-alert-content:after {
    display: table;
    content: ""
}

.wui-alert.wui-alert-with-link .wui-alert-content:after {
    clear: both
}

.wui-alert.wui-alert-with-link .wui-alert-content .wui-alert-link {
    display: block
}

.wui-alert.wui-alert-primary {
    color: #0058B2;
    border-color: #0058B2
}

.wui-alert.wui-alert-accents {
    color: #0058B2;
    border-color: #0058B2
}

.wui-alert.wui-alert-warning {
    color: #F2914A;
    border-color: #F2914A
}

.wui-crumb {
    line-height: 1
}

.wui-crumb .wui-crumb-item {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1;
    color: #333
}

.wui-crumb .wui-crumb-item>i {
    font-size: inherit;
    color: #0058B2
}

.wui-crumb .wui-crumb-item.wui-crumb-separator {
    pointer-events: none
}

.wui-crumb .wui-crumb-item:hover {
    color: #000
}

.wui-crumb .wui-crumb-item:last-child {
    pointer-events: none
}

.wui-crumb .wui-crumb-item:last-child.wui-crumb-separator {
    display: none
}

.wui-crumb.wui-crumb-light .wui-crumb-item {
    color: rgba(255, 255, 255, 0.85)
}

.wui-crumb.wui-crumb-light .wui-crumb-item:hover {
    color: #fff
}

.wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link {
    padding-left: 16px
}

.wui-menu.wui-menu-prefix>.wui-menu-item>.wui-menu-link:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -3px;
    width: 0;
    height: 0;
    border: 3px solid
}

.wui-menu.wui-menu-border>.wui-menu-item {
    border-bottom: 1px solid #f0f0f0
}

.wui-menu.wui-menu-suffix>.wui-menu-item>.wui-menu-link {
    padding-right: 24px
}

.wui-menu.wui-menu-suffix>.wui-menu-item>.wui-menu-arrow {
    display: block
}

.wui-menu>.wui-menu-item {
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative
}

.wui-menu>.wui-menu-item>.wui-menu-arrow {
    display: none;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 6px;
    right: 0;
    color: #999;
    line-height: 1;
    text-align: center;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.wui-menu>.wui-menu-item>.wui-menu-arrow>i {
    font-size: 24px
}

.wui-menu>.wui-menu-item>.wui-menu-arrow:hover {
    cursor: pointer;
    color: #0058B2
}

.wui-menu>.wui-menu-item>.wui-menu-link {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    color: #333;
    position: relative;
    font-size: 16px;
    line-height: 24px
}

.wui-menu>.wui-menu-item>.wui-menu-link:hover {
    color: #0058B2
}

.wui-menu>.wui-menu-item>.wui-menu-sublist {
    padding: 4px 0;
    display: none
}

.wui-menu>.wui-menu-item.open>.wui-menu-link,
.wui-menu>.wui-menu-item.open>.wui-menu-arrow {
    color: #0058B2
}

.wui-menu>.wui-menu-item.open>.wui-menu-sublist {
    display: block
}

.wui-menu>.wui-menu-item.open>.wui-menu-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.wui-menu>.wui-menu-item.active>.wui-menu-link,
.wui-menu>.wui-menu-item.active>.wui-menu-arrow {
    color: #0058B2
}

.wui-card {
    background-color: #fff;
    padding: 0 24px
}

.wui-card .wui-card-hd {
    padding: 16px 0;
    border-bottom: 1px solid #d9d9d9
}

.wui-card .wui-card-hd .wui-card-text {
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    color: #0058B2
}

.wui-card .wui-card-bd {
    padding: 24px 0
}

.wui-card+.wui-card {
    margin-top: 24px
}

@media only screen and (min-width: 1024px) {
    .wui-card+.wui-card {
        margin-top: 32px
    }
}

.wui-cabinet {
    min-width: 120px
}

.wui-cabinet .wui-cabinet-preview {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-color: #f5f5f5;
    border: 1px solid #d9d9d9;
    position: relative
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-image {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    border: 0;
    object-fit: contain;
    object-position: center
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    line-height: 1;
    text-align: center;
    color: #fff;
    cursor: pointer
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video .wui-cabinet-preview-play {
    display: inline-block;
    vertical-align: middle
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video:after {
    content: '';
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle
}

.wui-cabinet .wui-cabinet-preview .wui-cabinet-preview-wrapper .wui-cabinet-preview-video:hover {
    color: #0058B2
}

.wui-cabinet .wui-cabinet-preview.wui-cabinet-video .wui-cabinet-preview-wrapper .wui-cabinet-preview-video {
    display: block
}

.wui-cabinet .wui-cabinet-thumb {
    position: relative;
    margin-top: 10px;
    width: 100%
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container {
    width: 100%;
    padding: 0 30px 0 30px;
    overflow: hidden
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list {
    display: block;
    width: 100%;
    line-height: 1;
    font-size: 0;
    white-space: nowrap;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item {
    display: inline-block;
    width: 25%;
    padding-bottom: 25%;
    height: 0;
    cursor: pointer;
    position: relative
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #d9d9d9
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    border: 0;
    object-fit: contain;
    object-position: center
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    line-height: 1;
    text-align: center;
    color: #fff;
    cursor: pointer
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video .wui-cabinet-thumb-play {
    display: inline-block;
    vertical-align: middle
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video:after {
    content: '';
    height: 100%;
    width: 0;
    display: inline-block;
    vertical-align: middle
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item.wui-cabinet-video .wui-cabinet-thumb-wrap .wui-cabinet-thumb-video {
    display: block
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item:hover .wui-cabinet-thumb-wrap,
.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-container .wui-cabinet-thumb-list .wui-cabinet-thumb-item.active .wui-cabinet-thumb-wrap {
    border-color: #0058B2
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button {
    display: block;
    position: absolute;
    top: 5px;
    bottom: 5px;
    width: 25px;
    background-color: #f5f5f5;
    border: 0;
    background-image: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    color: #333
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button.wui-cabinet-thumb-prev {
    left: 0
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button.wui-cabinet-thumb-next {
    right: 0
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button:hover {
    background-color: #0058B2;
    color: #fff
}

.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button:disabled,
.wui-cabinet .wui-cabinet-thumb .wui-cabinet-thumb-controls .wui-cabinet-thumb-button.disabled {
    pointer-events: none
}

.wui-number {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    height: 32px
}

.wui-number .wui-number-button {
    display: block;
    position: absolute;
    top: 0;
    cursor: pointer;
    color: #333;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d9d9;
    background-image: none;
    background-color: #f5f5f5
}

.wui-number .wui-number-button.sub {
    left: 0
}

.wui-number .wui-number-button.add {
    right: 0
}

.wui-number .wui-number-button:hover {
    background-color: #d9d9d9
}

.wui-number .wui-number-button:disabled {
    background-color: transparent;
    color: #bfbfbf;
    cursor: not-allowed
}

.wui-number .wui-number-input {
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 0 40px;
    line-height: 30px;
    border: 1px solid #d9d9d9;
    max-width: 120px
}

.wui-checkbox {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 4px 0;
    font-size: 16px;
    user-select: none
}

.wui-checkbox .wui-checkbox-inner,
.wui-checkbox>input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0
}

.wui-checkbox .wui-checkbox-inner:indeterminate+.wui-checkbox-label:before,
.wui-checkbox>input[type="checkbox"]:indeterminate+.wui-checkbox-label:before {
    border-color: #0058B2;
    background-color: #0058B2
}

.wui-checkbox .wui-checkbox-inner:indeterminate+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:indeterminate+.wui-checkbox-label:after {
    background-color: #fff
}

.wui-checkbox .wui-checkbox-inner:checked+.wui-checkbox-label:before,
.wui-checkbox>input[type="checkbox"]:checked+.wui-checkbox-label:before {
    border-color: #0058B2;
    background-color: #0058B2
}

.wui-checkbox .wui-checkbox-inner:checked+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:checked+.wui-checkbox-label:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 6px;
    width: 8px;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #fff #fff;
    background-color: transparent
}

.wui-checkbox .wui-checkbox-inner:disabled+.wui-checkbox-label,
.wui-checkbox>input[type="checkbox"]:disabled+.wui-checkbox-label {
    color: #bfbfbf;
    cursor: not-allowed
}

.wui-checkbox .wui-checkbox-inner:disabled+.wui-checkbox-label:before,
.wui-checkbox>input[type="checkbox"]:disabled+.wui-checkbox-label:before {
    border-color: #d9d9d9;
    background-color: #f5f5f5
}

.wui-checkbox .wui-checkbox-inner:disabled:indeterminate+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:disabled:indeterminate+.wui-checkbox-label:after {
    background-color: #bfbfbf
}

.wui-checkbox .wui-checkbox-inner:disabled:checked+.wui-checkbox-label:after,
.wui-checkbox>input[type="checkbox"]:disabled:checked+.wui-checkbox-label:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: #d9d9d9
}

.wui-checkbox .wui-checkbox-label {
    display: block;
    padding-left: 24px;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    color: #333
}

.wui-checkbox .wui-checkbox-label:before {
    border-radius: 2px;
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    background-color: #fff
}

.wui-checkbox .wui-checkbox-label:after {
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-width: 0;
    border-style: solid;
    border-color: transparent
}

.wui-checkbox:active .wui-checkbox-label:before {
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb
}

.wui-radio {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 4px 0;
    line-height: 1;
    font-size: 0;
    user-select: none
}

.wui-radio .wui-radio-inner,
.wui-radio>input[type="radio"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0
}

.wui-radio .wui-radio-inner:checked+.wui-radio-label:before,
.wui-radio>input[type="radio"]:checked+.wui-radio-label:before {
    border-color: #0058B2;
    background-color: #0058B2
}

.wui-radio .wui-radio-inner:checked+.wui-radio-label:after,
.wui-radio>input[type="radio"]:checked+.wui-radio-label:after {
    background-color: #fff
}

.wui-radio .wui-radio-inner:disabled+.wui-radio-label,
.wui-radio>input[type="radio"]:disabled+.wui-radio-label {
    color: #bfbfbf;
    cursor: not-allowed
}

.wui-radio .wui-radio-inner:disabled+.wui-radio-label:before,
.wui-radio>input[type="radio"]:disabled+.wui-radio-label:before {
    border-color: #d9d9d9;
    background-color: #f5f5f5
}

.wui-radio .wui-radio-inner:disabled:checked+.wui-radio-label:after,
.wui-radio>input[type="radio"]:disabled:checked+.wui-radio-label:after {
    background-color: #d9d9d9
}

.wui-radio .wui-radio-label {
    display: inline-block;
    vertical-align: middle;
    padding-left: 24px;
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    color: #333
}

.wui-radio .wui-radio-label:before {
    content: '';
    display: block;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #d9d9d9;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.wui-radio .wui-radio-label:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    left: 5px;
    top: 50%;
    margin-top: -4px;
    background-color: transparent;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.wui-radio .wui-radio-image,
.wui-radio .wui-radio-icon {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    width: auto
}

.wui-radio:focus-within .wui-radio-label:before {
    -webkit-box-shadow: 0 0 0 3px #f2f7eb;
    box-shadow: 0 0 0 3px #f2f7eb
}

.wui-empty {
    text-align: center
}

.wui-empty .wui-empty-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
    color: #333
}

.wui-empty .wui-empty-action {
    margin-top: 24px
}

.wui-dialog-wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-animation: fade-in .3s ease 0s both;
    animation: fade-in .3s ease 0s both
}

.wui-dialog-wrap .wui-dialog {
    -webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    -webkit-animation: dialog-in .3s ease 0s both;
    animation: dialog-in .3s ease 0s both;
    display: block;
    width: 420px;
    border-radius: 4px;
    background-color: #fff;
    padding: 24px;
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -210px
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container {
    display: block;
    position: relative;
    padding-left: 38px
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-icon {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-icon .wui-dialog-icon-inner {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
    overflow: hidden
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-icon .wui-dialog-icon-inner>i {
    font-size: 24px
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #333
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-content {
    display: block;
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
    color: #999
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-action {
    display: block;
    font-size: 0;
    text-align: right;
    margin-top: 24px
}

.wui-dialog-wrap .wui-dialog .wui-dialog-container .wui-dialog-action .wui-btn {
    margin-left: 8px
}

.wui-dialog-wrap .wui-dialog.dialog-info .wui-dialog-container .wui-dialog-icon {
    color: #1890FF
}

.wui-dialog-wrap .wui-dialog.dialog-success .wui-dialog-container .wui-dialog-icon {
    color: #26BB79
}

.wui-dialog-wrap .wui-dialog.dialog-warning .wui-dialog-container .wui-dialog-icon {
    color: #F2914A
}

.wui-dialog-wrap .wui-dialog.dialog-danger .wui-dialog-container .wui-dialog-icon {
    color: #FE5050
}

.wui-dialog-wrap .wui-dialog.dialog-confirm .wui-dialog-container .wui-dialog-icon {
    color: #F2914A
}

.wui-dialog-wrap.dialog-remove {
    -webkit-animation: fade-out .3s ease 0s both;
    animation: fade-out .3s ease 0s both
}

.wui-dialog-wrap.dialog-remove .wui-dialog {
    -webkit-animation: dialog-out .3s ease 0s both;
    animation: dialog-out .3s ease 0s both
}

body {
    background-color: #f5f5f5
}

.layout-root {
    position: relative;
    padding-bottom: 60px
}

@media only screen and (min-width: 1024px) {
    .layout-root {
        padding-bottom: 0
    }
}

.layout-root .layout-header.is-fixed,
.layout-root .layout-header.is-sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999
}

@media only screen and (min-width: 1024px) {
    .layout-root .layout-header.is-fixed {
        position: fixed
    }
}

.layout-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px
}

.layout-clear:before,
.layout-clear:after {
    display: table;
    content: ""
}

.layout-clear:after {
    clear: both
}

.layout-content {
    background-color: #fff;
    padding: 16px
}

@media only screen and (min-width: 1024px) {
    .layout-content {
        padding: 24px
    }
}

.section+.section {
    margin-top: 16px
}

@media only screen and (min-width: 1024px) {
    .section+.section {
        margin-top: 32px
    }
}

.section.section-near {
    margin: 0
}

.header {
    border-bottom: 1px solid #f0f0f0
}

.header .header-pc {
    display: none;
    background-color: #fff
}

.header .header-pc .header-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    max-width: 1440px;
    padding: 0 16px;
    margin: 0 auto
}

.header .header-pc .header-wrap .header-logo {
    display: block;
    overflow: hidden;
    height: 64px;
    -webkit-flex: auto;
    flex: auto
}

.header .header-pc .header-wrap .header-logo>a {
    display: inline-block;
    height: 100%
}

.header .header-pc .header-wrap .header-logo>a>img {
    display: block;
    width: auto;
    height: 100%;
    border: 0
}

.header .header-pc .header-wrap .header-opts {
    -webkit-flex: auto;
    flex: auto
}

.header .header-pc .header-wrap .header-opts .header-nav {
    display: block;
    text-align: right;
    height: 48px;
    opacity: 1;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-item {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-size: 0;
    line-height: 1
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-item .header-nav-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 0 12px 8px;
    -webkit-transition: padding .3s ease 0s;
    transition: padding .3s ease 0s
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-item:hover {
    color: #0058B2
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-divider {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 16px
}

.header .header-pc .header-wrap .header-opts .header-nav .header-nav-list .header-nav-divider:after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background-color: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -8px
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover {
    position: relative
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-toggle {
    display: block;
    position: relative
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-toggle .header-popover-badge {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    background-color: #0058B2;
    color: #fff;
    padding: 0 6px;
    border-radius: 10px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content {
    display: none;
    position: absolute;
    right: -24px;
    left: auto;
    z-index: 10002
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap {
    position: relative;
    background-color: #fff;
    width: 300px;
    border: 1px solid #f0f0f0;
    border-top: 2px solid #0058B2
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap:after {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    right: 25px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #0058B2 transparent
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list {
    overflow-y: auto;
    max-height: 300px
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar-track {
    background-color: transparent
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar-thumb {
    background-color: #d9d9d9
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list::-webkit-scrollbar-thumb:hover {
    background-color: #c3c3c3
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-empty,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-empty] {
    display: block;
    text-align: center;
    padding: 24px 0
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-empty span,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-empty] span {
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 8px 0;
    color: #666
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-empty span>i,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-empty] span>i {
    font-size: 40px
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item] {
    display: block;
    position: relative;
    text-align: left;
    font-size: 14px;
    padding: 10px 16px 10px 56px;
    line-height: 32px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item>img,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item]>img {
    display: block;
    position: absolute;
    top: 10px;
    left: 16px;
    width: 32px;
    height: 32px;
    background-color: #f5f5f5
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item:last-child,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item]:last-child {
    border: 0
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list .header-popover-item:hover,
.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-bd .header-popover-list>[data-carton-bag-item]:hover {
    color: #333;
    background-color: #f2f2f2
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-ft {
    padding: 16px;
    border-top: 1px solid #d9d9d9
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-ft .header-popover-action {
    display: block;
    font-size: 14px;
    line-height: 32px;
    padding: 0 16px;
    color: #fff;
    text-align: center;
    background-color: #0058B2;
    -webkit-transition: background .3s ease 0s;
    transition: background .3s ease 0s
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover .header-popover-content .header-popover-wrap .header-popover-ft .header-popover-action:hover {
    background-color: #a33e1e
}

.header .header-pc .header-wrap .header-opts .header-nav .header-popover:hover .header-popover-content {
    display: block
}

.header .header-pc .header-wrap .header-opts .header-menu {
    display: block
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-size: 0;
    line-height: 1;
    margin-left: 16px;
    position: relative
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item .header-menu-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 0
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item:after {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #0058B2
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item:hover,
.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item.active {
    color: #0058B2
}

.header .header-pc .header-wrap .header-opts .header-menu .header-menu-list .header-menu-item.active:after {
    display: block
}

.header .header-h5 {
    display: block
}

.header .header-h5 .header-wrap .header-nav {
    background-color: #333
}

.header .header-h5 .header-wrap .header-nav .header-nav-list {
    padding: 8px;
    font-size: 0;
    line-height: 1;
    color: #fff
}

.header .header-h5 .header-wrap .header-nav .header-nav-list .header-nav-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px
}

.header .header-h5 .header-wrap .header-logo {
    display: block;
    background-color: #fff
}

.header .header-h5 .header-wrap .header-logo>a {
    display: block;
    text-align: center;
    padding: 8px 0
}

.header .header-h5 .header-wrap .header-logo>a>img {
    display: inline-block;
    vertical-align: middle;
    height: 48px;
    width: auto
}

.header[data-scrolldir="down"] .header-pc .header-opts .header-nav {
    height: 0;
    opacity: 0;
    overflow: hidden
}

.header[data-scrolldir="down"] .header-pc .header-opts .header-menu .header-menu-list .header-menu-item .header-menu-text {
    padding: 20px 0
}

@media only screen and (min-width: 1024px) {
    .header .header-pc {
        display: block
    }

    .header .header-h5 {
        display: none
    }
}

.toolbar {
    display: none;
    position: fixed;
    bottom: 320px;
    right: 0;
    z-index: 3
}

.toolbar .tool-list .tool-item {
    position: relative
}

.toolbar .tool-list .tool-item .tool-item-content {
    background-color: #0058B2;
    color: #fff
}

.toolbar .tool-list .tool-item .tool-item-content .tool-item-icon {
    display: block;
    width: 42px;
    height: 42px;
    font-size: 24px;
    text-align: center;
    line-height: 42px
}

.toolbar .tool-list .tool-item .tool-item-content .tool-item-icon>i {
    font-size: inherit
}

.toolbar .tool-list .tool-item .tool-item-popover {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    padding-right: 8px
}

.toolbar .tool-list .tool-item .tool-item-popover:after,
.toolbar .tool-list .tool-item .tool-item-popover:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid
}

.toolbar .tool-list .tool-item .tool-item-popover:before {
    z-index: 2;
    right: 2px;
    top: 14px;
    border-width: 7px 0 7px 7px;
    border-color: transparent transparent transparent #fff
}

.toolbar .tool-list .tool-item .tool-item-popover:after {
    z-index: 1;
    right: 0;
    top: 13px;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #f0f0f0
}

.toolbar .tool-list .tool-item .tool-item-popover .tool-popover-wrap {
    background-color: #fff;
    min-width: 80px;
    min-height: 40px;
    border: 1px solid #f0f0f0
}

.toolbar .tool-list .tool-item .tool-popover-text {
    font-size: 14px;
    line-height: 40px;
    padding: 0 16px;
    word-break: break-word;
    white-space: nowrap;
    color: #333
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item {
    display: block;
    white-space: nowrap;
    word-break: keep-all;
    font-size: 0;
    line-height: 1;
    padding: 10px 16px;
    color: #333
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item .im-item-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    text-align: center
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item .im-item-icon>i {
    font-size: inherit
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item .im-item-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    font-size: 14px;
    margin-left: 8px
}

.toolbar .tool-list .tool-item .tool-popover-im .tool-popover-list .tool-im-item:hover {
    color: #0058B2;
    background-color: #faede9
}

.toolbar .tool-list .tool-item .tool-popover-qr {
    padding: 8px
}

.toolbar .tool-list .tool-item .tool-popover-qr .tool-qr-img {
    display: block;
    width: 128px;
    height: 128px;
    background-color: #ddd
}

.toolbar .tool-list .tool-item:hover .tool-item-content {
    background-color: #b84622
}

.toolbar .tool-list .tool-item:hover .tool-item-popover {
    display: block
}

@media only screen and (min-width: 1024px) {
    .toolbar {
        display: block
    }
}

.docker {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
    background-color: #fff;
    border-top: 1px solid #f0f0f0
}

.docker .dock-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around
}

.docker .dock-list .dock-item {
    position: relative;
    padding: 4px;
    min-width: 60px
}

.docker .dock-list .dock-item .dock-item-content {
    display: block;
    text-align: center
}

.docker .dock-list .dock-item .dock-item-content .dock-item-icon {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 auto;
    color: #333
}

.docker .dock-list .dock-item .dock-item-content .dock-item-icon>i {
    font-size: 24px
}

.docker .dock-list .dock-item .dock-item-content .dock-item-text {
    display: block;
    font-size: 12px;
    line-height: 1;
    height: 20px;
    color: #666
}

.docker .dock-list .dock-item .dock-item-popover {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 50%;
    padding-bottom: 11px
}

.docker .dock-list .dock-item .dock-item-popover:after,
.docker .dock-list .dock-item .dock-item-popover:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid
}

.docker .dock-list .dock-item .dock-item-popover:before {
    z-index: 2;
    left: 50%;
    margin-left: -7px;
    bottom: 5px;
    border-width: 7px 7px 0 7px;
    border-color: #fff transparent transparent transparent
}

.docker .dock-list .dock-item .dock-item-popover:after {
    z-index: 1;
    bottom: 4px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px 8px 0 8px;
    border-color: #f0f0f0 transparent transparent transparent
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap {
    background-color: #fff;
    border: 1px solid #f0f0f0
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list {
    display: block
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item {
    display: block;
    padding: 8px 12px;
    font-size: 0;
    white-space: nowrap;
    word-break: keep-all;
    color: #333;
    background-color: #fff;
    min-width: 60px;
    border-bottom: 1px solid #f0f0f0
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item .popover-item-icon {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item .popover-item-icon>i {
    font-size: 20px
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item .popover-item-text {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    line-height: 32px;
    font-size: 14px
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item:last-child {
    border: 0
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-list .dock-popover-item:hover {
    color: #0058B2;
    background-color: #faede9
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-text {
    font-size: 14px;
    line-height: 48px;
    height: 48px;
    padding: 0 16px;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
    color: #666;
    background-color: #fff;
    min-width: 60px
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-image {
    display: block;
    padding: 4px;
    min-width: 60px;
    max-width: 180px
}

.docker .dock-list .dock-item .dock-item-popover .dock-popover-wrap .dock-popover-image>img {
    display: block;
    width: 100%;
    height: auto;
    min-width: 140px
}

.docker .dock-list .dock-item:hover .dock-item-content .dock-item-icon,
.docker .dock-list .dock-item:hover .dock-item-content .dock-item-text {
    color: #0058B2
}

.docker .dock-list .dock-item:hover .dock-item-popover {
    display: block;
    -webkit-animation: docker-show 0.5s both;
    animation: docker-show 0.5s both
}

@media only screen and (min-width: 1024px) {
    .docker {
        display: none
    }
}

@-webkit-keyframes docker-show {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(30px);
        transform: translateX(-50%) translateY(30px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0)
    }
}

@keyframes docker-show {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(30px);
        transform: translateX(-50%) translateY(30px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0)
    }
}

@media screen and (max-width: 425px) {
    #GdImMainBox {
        bottom: 72px !important
    }
}

.footer {
    margin-top: 16px;
    background-color: #626262
}

.footer .footer-contact {
    padding: 32px 0
}

.footer .footer-contact .footer-contact-item {
    padding: 8px 24px
}

.footer .footer-contact .footer-contact-item .footer-contact-icon,
.footer .footer-contact .footer-contact-item .footer-contact-label,
.footer .footer-contact .footer-contact-item .footer-contact-value {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 13px
}

.footer .footer-contact .footer-contact-item .footer-contact-label {
    line-height: 32px
}

.footer .footer-contact .footer-contact-item .footer-contact-value {
    display: none
}

.footer .footer-info {
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff;
    text-align: center
}

.footer .footer-info .footer-info-copyright {
    font-size: 14px;
    line-height: 32px
}

.footer .footer-info .footer-info-social {
    line-height: 32px;
    font-size: 0
}

.footer .footer-info .footer-info-social .footer-social-item {
    display: inline-block;
    line-height: 1;
    font-size: 0;
    margin: 0 4px
}

@media only screen and (min-width: 1024px) {
    .footer {
        margin-top: 32px
    }

    .footer .footer-contact .footer-contact-item .footer-contact-value {
        display: block
    }

    .footer .footer-info .footer-info-copyright {
        float: left
    }

    .footer .footer-info .footer-info-social {
        float: right
    }
}

#drawer-search .drawer-search-wrap {
    display: block;
    max-width: 520px;
    margin: 0 auto;
    padding: 32px 16px
}

#drawer-search .drawer-search-wrap .drawer-search-bar {
    position: relative;
    padding-right: 40px
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input {
    display: block;
    width: 100%;
    height: 40px;
    border: 0;
    background-image: none;
    font-size: 16px;
    padding: 0 16px;
    background-color: #f5f5f5;
    color: #333
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input::-webkit-input-placeholder {
    color: #999
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input::-ms-input-placeholder {
    color: #999
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input::-moz-placeholder {
    color: #999
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-button {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #0058B2;
    background-image: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background .3s ease 0s;
    transition: background .3s ease 0s
}

#drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-button:hover {
    background-color: #8f371b
}

@media only screen and (min-width: 1024px) {
    #drawer-search .drawer-search-wrap {
        padding: 64px 0
    }

    #drawer-search .drawer-search-wrap .drawer-search-bar {
        padding-right: 56px
    }

    #drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-input {
        height: 56px
    }

    #drawer-search .drawer-search-wrap .drawer-search-bar .drawer-search-button {
        width: 56px;
        height: 56px
    }
}

#drawer-menu .drawer-menu-wrap {
    padding: 16px
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item {
    display: block;
    font-size: 16px;
    line-height: 32px;
    color: #333
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.sub {
    color: #666;
    padding-left: 16px
}

#drawer-menu .drawer-menu-wrap .drawer-menu-list .drawer-menu-item.trd {
    color: #999;
    padding-left: 32px
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list {
    padding: 16px 0
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list .drawer-lang-item {
    display: block;
    position: relative
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list .drawer-lang-item .drawer-lang-icon {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 4px;
    left: 16px
}

#drawer-lang .drawer-lang-wrap .drawer-lang-list .drawer-lang-item .drawer-lang-text {
    display: block;
    font-size: 16px;
    line-height: 32px;
    padding: 0 16px 0 48px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.detail .detail-wrap .detail-header {
    text-align: center;
    border-bottom: 1px solid #f0f0f0
}

.detail .detail-wrap .detail-header .detail-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0058B2
}

.detail .detail-wrap .detail-header .detail-meta {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
    color: #666
}

.detail .detail-wrap .detail-container {
    padding: 16px 0;
    font-size: 14px;
    line-height: 24px;
    text-align: justify
}

.detail .detail-wrap .detail-container img {
    display: block;
    max-width: 100%;
    margin: 0 auto
}

.detail .detail-wrap .detail-footer {
    text-align: center;
    font-size: 0;
    line-height: 1
}

.detail .detail-wrap .detail-footer .wui-btn {
    margin: 0 8px
}

@media only screen and (min-width: 1024px) {
    .detail .detail-wrap .detail-header .detail-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px
    }

    .detail .detail-wrap .detail-header .detail-meta {
        font-size: 16px;
        margin-bottom: 16px
    }

    .detail .detail-wrap .detail-container {
        padding: 24px 0;
        font-size: 16px;
        line-height: 28px
    }
}

.backing {
    position: relative
}

.backing:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5)
}

.crumb {
    background-color: #d9d9d9
}

.crumb .crumb-wrap {
    text-align: center;
    padding: 8px 0
}

@media only screen and (min-width: 1024px) {
    .crumb .crumb-wrap {
        text-align: left;
        padding: 12px 0
    }
}

.grid .grid-item {
    display: block
}

.grid .grid-item .grid-item-title {
    font-size: 18px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    font-weight: 500;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.grid .grid-item .grid-item-desc {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2
}

.grid .grid-item .grid-item-price {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    height: 24px;
    color: #0058B2
}

.grid .grid-item:hover .grid-item-title {
    color: #0058B2
}

.infinite .infinite-spinner {
    display: none;
    text-align: center;
    pointer-events: none;
    margin-top: 16px
}

.infinite .infinite-trigger {
    display: none;
    text-align: center;
    margin-top: 16px
}

.infinite .infinite-last {
    display: none
}

.infinite .infinite-last .infinite-no-more {
    display: block;
    font-size: 16px;
    line-height: 40px;
    padding: 0;
    color: #999;
    text-align: center
}

.infinite .infinite-navigator {
    display: block
}

.sidebar {
    display: none
}

@media only screen and (min-width: 1024px) {
    .sidebar {
        display: block
    }
}

.product-card {
    display: block;
    position: relative
}

.product-card .product-card-cover {
    border: 1px solid #d9d9d9
}

.product-card .product-card-intro {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 8px 0
}

.product-card .product-card-intro .product-intro-info {
    -webkit-flex: auto;
    flex: auto;
    padding-right: 8px;
    width: 0
}

.product-card .product-card-intro .product-intro-info .product-info-title {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.product-card .product-card-intro .product-intro-info .product-info-title:hover {
    color: #0058B2
}

.product-card .product-card-intro .product-intro-info .product-info-price {
    font-size: 16px;
    line-height: 24px;
    color: #0058B2
}

.product-card .product-card-intro .product-intro-action {
    -webkit-flex: none;
    flex: none
}

.product-card .product-card-intro .product-intro-action .product-action-icon {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    border-radius: 16px;
    color: #333
}

.product-card .product-card-intro .product-intro-action .product-action-icon>i {
    font-size: inherit
}

.product-card .product-card-intro .product-intro-action:hover .product-action-icon {
    color: #FE5050;
    background-color: rgba(0, 0, 0, 0.05)
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-shopping-cart {
    color: #FE5050
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-shopping-cart:before {
    content: "\ee9d" !important
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-wish-list {
    color: #FE5050
}

.product-card .product-card-intro .product-intro-action.active .product-action-icon .icon-wish-list:before {
    content: "\ef9b" !important
}

.product-card.product-card-inner .product-card-intro {
    position: absolute;
    bottom: 1px;
    left: 1px;
    right: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px
}

.advantage {
    margin-top: 32px;
    background-color: #333;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed
}

.advantage .advantage-wrap {
    padding: 24px 0;
}

.advantage .advantage-wrap .advantage-cover {
    display: block;
    width: 100%;
    position: relative
}

.advantage .advantage-wrap .advantage-cover .advantage-cover-wrap {
    width: 100%
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-title {
    font-size: 24px;
    color: #fff;
    position: relative;
    text-align: center;
    text-transform: Uppercase
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-icon {
    -webkit-flex: none;
    flex: none;
    font-size: 32px;
    line-height: 88px;
    width: 48px;
    text-align: left;
    margin-right: 8px;
    font-weight: 500;
    color: #fff;
    position: relative
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info {
    -webkit-flex: auto;
    flex: auto
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-title {
    font-size: 18px;
    line-height: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-desc {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2
}

@media only screen and (min-width: 1024px) {
    .advantage {
        margin-top: 7%
    }

    .advantage .advantage-wrap {
        padding: 48px 0 72px
    }

    .advantage .advantage-wrap .advantage-cover {
        height: 100%;
        min-height: 520px
    }

    .advantage .advantage-wrap .advantage-cover .advantage-cover-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%
    }

    .advantage .advantage-wrap .advantage-intro {
        padding-left: 15%
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-title {
        font-size: 36px;
        line-height: 90px;
        text-align: left
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 120px;
        height: 3px;
        background-color: #fff
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item {
        padding: 16px 0
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-icon {
        font-size: 50px;
        line-height: 88px;
        width: 64px;
        margin-right: 64px
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-icon:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: -48px;
        width: 32px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.2)
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info {
        -webkit-flex: auto;
        flex: auto
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-title {
        font-size: 24px;
        line-height: 40px;
        height: 40px
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item .advantage-item-info .advantage-info-desc {
        font-size: 16px;
        line-height: 24px;
        height: 48px;
        text-align: justify
    }

    .advantage .advantage-wrap .advantage-intro .advantage-intro-list .advantage-intro-item:hover {
        background-color: rgba(255, 255, 255, 0.05)
    }
}

.page-home .banner {
    display: block;
    background-color: #ddd
}

.page-home .banner .banner-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%
}

.page-home .banner .banner-wrapper:nth-child(2),
.page-home .banner .banner-wrapper.banner-h5 {
    display: none
}

.page-home .banner.has-mobile .banner-wrapper {
    padding-bottom: 50%
}

.page-home .banner.has-mobile .banner-wrapper:nth-child(1),
.page-home .banner.has-mobile .banner-wrapper.banner-pc {
    display: none
}

.page-home .banner.has-mobile .banner-wrapper:nth-child(2),
.page-home .banner.has-mobile .banner-wrapper.banner-h5 {
    display: block
}

.page-home .banner .banner-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.page-home .banner .banner-container .banner-swiper {
    width: 100%;
    height: 100%
}

.page-home .banner .banner-container .banner-swiper .swiper-slide>a {
    display: block;
    width: 100%;
    height: 100%
}

.page-home .banner .banner-container .banner-swiper .swiper-slide>a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media only screen and (min-width: 1024px) {
    .page-home .banner.has-mobile .banner-wrapper {
        padding-bottom: 40%
    }

    .page-home .banner.has-mobile .banner-wrapper:nth-child(1),
    .page-home .banner.has-mobile .banner-wrapper.banner-pc {
        display: block
    }

    .page-home .banner.has-mobile .banner-wrapper:nth-child(2),
    .page-home .banner.has-mobile .banner-wrapper.banner-h5 {
        display: none
    }

    .page-home .banner .banner-container .banner-swiper .swiper-button-prev,
    .page-home .banner .banner-container .banner-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: -20px
    }

    .page-home .banner .banner-container .banner-swiper .swiper-button-prev:after,
    .page-home .banner .banner-container .banner-swiper .swiper-button-next:after {
        font-size: 20px
    }
}

.page-home .news .news-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #0058B2;
    position: relative;
    text-transform: Uppercase
}

.page-home .news .news-wrap .news-list .news-item {
    background-color: #fff
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro {
    padding: 12px 16px
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    display: block;
    font-size: 16px;
    line-height: 32px;
    height: 32px;
    color: #333
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title:hover {
    color: #0058B2
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    display: block;
    font-size: 14px;
    line-height: 24px;
    height: 24px;
    color: #999
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date {
    font-size: 16px;
    line-height: 24px;
    height: 24px
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-icon {
    color: #0058B2
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-icon>i {
    font-size: inherit
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-days {
    color: #0058B2
}

.page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-year {
    color: #999
}

@media only screen and (min-width: 1024px) {
    .page-home .news .news-title {
        font-size: 36px;
        padding: 16px 0
    }

    .page-home .news .news-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -50px;
        width: 100px;
        height: 3px;
        background-color: #0058B2
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro {
        padding: 20px 24px
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
        font-size: 20px;
        margin-bottom: 8px
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
        font-size: 16px;
        margin-bottom: 8px
    }

    .page-home .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date {
        font-size: 20px
    }
}

.page-home .product {
    position: relative
}

.page-home .product .product-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #0058B2;
    text-transform: Uppercase
}

.page-home .product .product-wrap {
    position: relative
}

.page-home .product .product-wrap .product-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden
}

.page-home .product .product-wrap .product-list .product-item {
    display: block;
    position: relative
}

.page-home .product .product-wrap .product-list .product-item .product-beam {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item {
    display: block;
    position: relative;
    opacity: 0;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:before,
.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:after {
    display: block;
    position: absolute;
    content: '';
    background-color: #fff;
    width: 100%;
    height: 100%
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:first-child {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:first-child:before {
    left: -90%
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:first-child:after {
    right: -90%
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:last-child {
    height: 100%;
    width: 1px;
    left: 50%;
    top: 0
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:last-child:before {
    top: -90%
}

.page-home .product .product-wrap .product-list .product-item .product-beam .product-beam-item:last-child:after {
    bottom: -90%
}

.page-home .product .product-wrap .product-list .product-item .product-intro {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s
}

.page-home .product .product-wrap .product-list .product-item .product-intro .product-intro-title {
    display: block;
    font-size: 14px;
    padding: 0 16px;
    color: #fff;
    margin-bottom: 8px
}

.page-home .product .product-wrap .product-list .product-item .product-intro .product-intro-price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #0058B2;
    margin-bottom: 8px
}

.page-home .product .product-wrap .product-list .swiper-slide:hover .product-intro {
    opacity: 1
}

.page-home .product .product-wrap .product-list .swiper-slide:hover .product-beam .product-beam-item {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

@media only screen and (min-width: 1024px) {
    .page-home .product .product-title {
        display: none
    }

    .page-home .product .product-wrap .product-list .product-item .product-intro .product-intro-title {
        font-size: 18px;
        line-height: 24px;
        padding: 0 32px;
        margin-bottom: 16px
    }

    .page-home .product .product-wrap .product-list .product-item .product-intro .product-intro-price {
        font-size: 18px;
        margin-bottom: 16px
    }
}

.page-home .about .about-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #0058B2;
    position: relative;
    text-transform: Uppercase
}

.page-home .about .about-wrap .about-intro {
    height: 100%;
    padding: 16px;
    background-color: #fff
}

.page-home .about .about-wrap .about-intro .about-intro-title {
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #333;
    position: relative
}

.page-home .about .about-wrap .about-intro .about-intro-title:after {
    content: '';
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 2px;
    background-color: #0058B2
}

.page-home .about .about-wrap .about-intro .about-intro-desc {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    margin: 16px 0;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 7
}

.page-home .about .about-wrap .about-intro .about-intro-action {
    text-align: center
}

.page-home .about .about-wrap .about-cover {
    display: block;
    position: relative;
    color: #fff;
    height: 100%
}

.page-home .about .about-wrap .about-cover .about-video-mask {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: inherit
}

.page-home .about .about-wrap .about-cover .about-video-mask:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.page-home .about .about-wrap .about-cover .about-video-mask .about-video-play {
    display: inline-block;
    vertical-align: middle;
    width: 64px;
    height: 64px
}

.page-home .about .about-wrap .about-cover .about-video-mask .about-video-play>i {
    font-size: 64px
}

.page-home .about .about-wrap .about-cover.about-video .about-video-mask {
    display: block
}

.page-home .about .about-wrap .about-cover:hover {
    color: #0058B2
}

@media only screen and (min-width: 1024px) {
    .page-home .about .about-title {
        font-size: 36px;
        padding: 16px 0
    }

    .page-home .about .about-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -50px;
        width: 100px;
        height: 3px;
        background-color: #0058B2
    }

    .page-home .about .about-wrap .about-intro {
        padding: 32px
    }

    .page-home .about .about-wrap .about-intro .about-intro-title {
        font-size: 30px;
        line-height: 40px;
        padding: 20px 0;
        text-align: left
    }

    .page-home .about .about-wrap .about-intro .about-intro-title:after {
        display: block
    }

    .page-home .about .about-wrap .about-intro .about-intro-desc {
        font-size: 16px;
        line-height: 30px;
        margin: 40px 0
    }

    .page-home .about .about-wrap .about-intro .about-intro-action {
        text-align: right
    }

    .page-home .about .about-wrap .about-cover {
        min-height: 500px
    }
}

.page-home .faq .faq-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #0058B2;
    position: relative;
    text-transform: Uppercase
}

.page-home .faq .faq-wrap .faq-list .faq-item {
    display: block;
    background-color: #0058B2;
    padding: 16px;
    margin: 0
}

.page-home .faq .faq-wrap .faq-list .faq-item .faq-item-title {
    display: block;
    font-size: 16px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.page-home .faq .faq-wrap .faq-list .faq-item .faq-item-desc {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2
}

.page-home .faq .faq-wrap .faq-list .faq-item:nth-child(2) {
    margin: 1px 0
}

.page-home .faq .faq-wrap .faq-list .faq-item:hover .faq-item-title {
    color: #fff
}

@media only screen and (min-width: 1024px) {
    .page-home .faq .faq-title {
        font-size: 36px;
        padding: 16px 0
    }

    .page-home .faq .faq-title:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -50px;
        width: 100px;
        height: 3px;
        background-color: #0058B2
    }

    .page-home .faq .faq-wrap .faq-list {
        display: -webkit-flex;
        display: flex
    }

    .page-home .faq .faq-wrap .faq-list .faq-item {
        display: block;
        -webkit-flex: auto;
        flex: auto;
        width: 0;
        padding: 32px
    }

    .page-home .faq .faq-wrap .faq-list .faq-item .faq-item-title {
        font-size: 20px;
        margin-bottom: 8px
    }

    .page-home .faq .faq-wrap .faq-list .faq-item .faq-item-desc {
        font-size: 16px
    }

    .page-home .faq .faq-wrap .faq-list .faq-item:nth-child(2) {
        margin: 0 1px
    }
}

.page-home .catalog {
    position: relative;
    z-index: 2
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 16px;
    background-color: #0058B2
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-cover {
    -webkit-flex: none;
    flex: none;
    width: 48px;
    height: 48px;
    margin-right: 8px
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-cover .catalog-cover-inner {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro {
    -webkit-flex: auto;
    flex: auto;
    padding-left: 8px;
    width: 0;
    position: relative
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -16px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3)
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-title {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-desc {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2
}

.page-home .catalog .catalog-wrap .catalog-list .catalog-item:last-child .catalog-item-intro:after {
    display: none
}

.page-home .catalog .catalog-wrap .catalog-info {
    position: relative;
    margin-top: 1px
}

.page-home .catalog .catalog-wrap .catalog-info .catalog-info-content {
    background-color: #666;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 16px
}

@media only screen and (min-width: 1024px) {
    .page-home .catalog.catalog-offset {
        margin-top: -186px;
        padding-bottom: 32px
    }

    .page-home .catalog .catalog-wrap .catalog-list {
        display: -webkit-flex;
        display: flex
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item {
        -webkit-flex: auto;
        flex: auto;
        width: 100%;
        padding: 32px;
        background-color: #0058B2;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-cover {
        width: 72px;
        height: 72px;
        margin-right: 16px
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro {
        padding-left: 16px
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro:after {
        width: 1px;
        height: 100%;
        top: 0;
        left: 0;
        bottom: auto
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-title {
        font-size: 24px;
        line-height: 1;
        height: 36px
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item .catalog-item-intro .catalog-intro-desc {
        font-size: 16px;
        line-height: 24px;
        text-indent: 16px;
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item:nth-child(2) {
        margin: 0 1px
    }

    .page-home .catalog .catalog-wrap .catalog-list .catalog-item:last-child .catalog-item-intro:after {
        display: block
    }

    .page-home .catalog .catalog-wrap .catalog-info .catalog-info-content {
        padding: 24px;
        text-align: center;
        font-size: 18px
    }
}

.page-about .detail .detail-wrap .detail-tabs {
    display: none;
    line-height: 1;
    font-size: 0;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 32px
}

.page-about .detail .detail-wrap .detail-tabs .wui-btn {
    margin: 0 8px
}

.page-about .detail .detail-wrap .detail-content .detail-container {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: #666
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-title {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    text-transform: Uppercase;
    margin: 12px 0;
    color: #0058B2
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery {
    position: relative;
    float: none;
    clear: both;
    color: #fff
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: inherit
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask .detail-video-play {
    display: inline-block;
    vertical-align: middle;
    width: 64px;
    height: 64px
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery .detail-video-mask .detail-video-play>i {
    font-size: 64px
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery.detail-video .detail-video-mask {
    display: block
}

.page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery:hover {
    color: #0058B2
}

@media only screen and (min-width: 1024px) {
    .page-about .detail .detail-wrap .detail-tabs {
        display: block
    }

    .page-about .detail .detail-wrap .detail-content .detail-container {
        font-size: 16px;
        line-height: 28px
    }

    .page-about .detail .detail-wrap .detail-content .detail-container .detail-title {
        font-size: 40px;
        text-align: left;
        margin: 0 0 24px;
        line-height: 1.4;
        padding-bottom: 8px;
        position: relative;
        color: #333
    }

    .page-about .detail .detail-wrap .detail-content .detail-container .detail-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 128px;
        height: 2px;
        background-color: #0058B2
    }

    .page-about .detail .detail-wrap .detail-content .detail-container .detail-gallery {
        float: right;
        margin: 0 0 0 24px;
        width: 50%
    }
}

.page-about .meta .meta-list .meta-item {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: "center";
    align-items: center;
    background-color: #0058B2;
    padding: 16px;
    margin: 0
}

.page-about .meta .meta-list .meta-item .meta-item-cover .meta-cover-inner {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.page-about .meta .meta-list .meta-item .meta-item-intro {
    color: #fff;
    padding-left: 8px
}

.page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-label {
    display: block;
    font-size: 14px;
    line-height: 24px
}

.page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-value {
    display: block;
    font-size: 24px;
    line-height: 28px
}

.page-about .meta .meta-list .meta-item:nth-child(2) {
    margin: 1px 0
}

@media only screen and (min-width: 1024px) {
    .page-about .meta .meta-list {
        display: -webkit-flex;
        display: flex
    }

    .page-about .meta .meta-list .meta-item {
        -webkit-flex: auto;
        flex: auto;
        width: 100%;
        text-align: left;
        padding: 32px
    }

    .page-about .meta .meta-list .meta-item .meta-item-cover .meta-cover-inner {
        display: block;
        width: 48px;
        height: 48px
    }

    .page-about .meta .meta-list .meta-item .meta-item-intro {
        padding-left: 16px
    }

    .page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-label {
        font-size: 16px
    }

    .page-about .meta .meta-list .meta-item .meta-item-intro .meta-intro-value {
        font-size: 36px;
        line-height: 48px
    }

    .page-about .meta .meta-list .meta-item:nth-child(2) {
        margin: 0 1px
    }
}

.page-about .cert .cert-wrap .cert-swiper {
    width: 100%;
    /* height: 100% */
}


.cert-swiper .swiper-wrapper{
    height: auto;
}

.page-about .service .service-title {
    font-size: 24px;
    margin: 24px 0;
    text-align: center;
    color: #0058B2;
    position: relative;
    text-transform: Uppercase
}

.page-about .service .service-wrap {
    background-color: #fff;
    padding: 16px
}

.page-about .service .service-wrap .service-list .service-item {
    display: -webkit-flex;
    display: flex
}

.page-about .service .service-wrap .service-list .service-item .service-item-cover {
    padding-right: 16px;
    -webkit-flex: none;
    flex: none
}

.page-about .service .service-wrap .service-list .service-item .service-item-cover .service-cover-inner {
    display: block;
    width: 72px;
    height: 72px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.page-about .service .service-wrap .service-list .service-item .service-item-intro {
    display: block;
    width: 0;
    -webkit-flex: auto;
    flex: auto
}

.page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-desc {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2
}

@media only screen and (min-width: 1024px) {
    .page-about .service {
        background-color: #fff
    }

    .page-about .service .service-title {
        font-size: 36px;
        margin: 0;
        padding: 48px 0 24px;
        color: #333
    }

    .page-about .service .service-wrap {
        padding: 32px 0 72px;
        background-color: transparent
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-cover {
        padding-right: 24px
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-cover .service-cover-inner {
        width: 100px;
        height: 100px
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-title {
        font-size: 18px;
        line-height: 32px
    }

    .page-about .service .service-wrap .service-list .service-item .service-item-intro .service-intro-desc {
        font-size: 16px;

        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        word-break: break-word;
        white-space: normal;
        -webkit-line-clamp: 3;
        padding-top: 32px;
    }
}

.page-case .faq .faq-wrap .faq-list .faq-item {
    display: block;
    margin-bottom: 24px;
    word-break: break-word;
    white-space: normal
}

.page-case .faq .faq-wrap .faq-list .faq-item .faq-item-q {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px
}

.page-case .faq .faq-wrap .faq-list .faq-item .faq-item-a {
    font-size: 16px;
    line-height: 24px;
    color: #666
}

.page-case .hot .hot-wrap .hot-intro .hot-intro-title {
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 12px;
    color: #0058B2
}

.page-case .hot .hot-wrap .hot-intro .hot-intro-desc {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 6
}

.page-case .hot .hot-wrap .hot-intro .hot-intro-action {
    display: none
}

.page-case .hot .hot-wrap .hot-cover {
    display: block
}

@media only screen and (min-width: 1024px) {
    .page-case .hot .hot-wrap .hot-intro .hot-intro-title {
        text-align: left;
        font-size: 36px;
        margin-bottom: 24px
    }

    .page-case .hot .hot-wrap .hot-intro .hot-intro-desc {
        font-size: 16px;
        line-height: 28px
    }

    .page-case .hot .hot-wrap .hot-intro .hot-intro-action {
        display: block;
        margin-top: 32px
    }
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 16px;
    color: #0058B2
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-icon {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: #0058B2
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-label {
    font-size: 16px;
    line-height: 24px;
    color: #333
}

.page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-value {
    font-size: 14px;
    color: #666
}

.page-contact .contact .contact-wrap .contact-container {
    margin-top: 24px
}

.page-contact .contact .contact-wrap .contact-container .contact-list .contact-item {
    height: 100%;
    padding: 24px;
    background-color: #faede9;
    border: 1px solid #d9d9d9
}

.page-contact .contact .contact-wrap .contact-container .contact-list .contact-item .contact-item-name {
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
    color: #0058B2
}

.page-contact .contact .contact-wrap .contact-container .contact-list .contact-item .contact-item-info .contact-info-col {
    font-size: 16px;
    line-height: 32px;
    color: #666
}

@media only screen and (min-width: 1024px) {
    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-title {
        font-size: 40px;
        text-align: left;
        margin-bottom: 32px;
        padding-bottom: 8px;
        color: #0058B2;
        position: relative
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 128px;
        height: 2px;
        background-color: #0058B2
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item {
        padding-left: 64px;
        margin-bottom: 32px
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-label {
        font-size: 18px;
        line-height: 1
    }

    .page-contact .contact .contact-wrap .contact-header .contact-intro .contact-intro-type .contact-type-item .contact-type-value {
        font-size: 16px
    }

    .page-contact .contact .contact-wrap .contact-header .contact-cover {
        padding: 0 0 24px 24px
    }

    .page-contact .contact .contact-wrap .contact-header .contact-cover .contact-cover-wrap {
        position: relative
    }

    .page-contact .contact .contact-wrap .contact-header .contact-cover .contact-cover-wrap:after {
        content: '';
        display: block;
        position: absolute;
        z-index: -1;
        bottom: -24px;
        left: -24px;
        width: 140px;
        height: 120px;
        background-color: #0058B2
    }
}

.page-news .news .news-wrap .news-gallery .news-swiper {
    width: 100%;
    height: 100%
}

.page-news .news .news-wrap .news-list {
    margin-top: 16px
}

.page-news .news .news-wrap .news-list .news-item {
    margin-bottom: 16px;
    background-color: #f5f5f5
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro {
    padding: 16px
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date {
    font-weight: 500
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-days {
    font-size: 18px;
    color: #0058B2
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-year {
    font-size: 14px;
    color: #666
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 8px 0;
    color: #333
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2
}

.page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-action {
    display: none;
    margin-top: 24px
}

.page-news .news .news-wrap .news-list .news-item:hover .news-item-intro .news-intro-title {
    color: #0058B2
}

@media only screen and (min-width: 1024px) {
    .page-news .news .news-wrap .news-list {
        margin-top: 24px
    }

    .page-news .news .news-wrap .news-list .news-item {
        margin-bottom: 24px
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-days {
        font-size: 32px
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-date .news-date-year {
        font-size: 24px
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-title {
        font-size: 20px;
        margin: 12px 0
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-desc {
        font-size: 16px
    }

    .page-news .news .news-wrap .news-list .news-item .news-item-intro .news-intro-action {
        display: block
    }
}

.page-products .product .product-list .product-item {
    margin-bottom: 16px
}

.page-products .product .product-list .product-item .product-item-intro {
    padding: 8px 0
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-title {
    display: block;
    font-size: 20px;
    line-height: 24px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-title:hover {
    color: #0058B2
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-desc {
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 2
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-price {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #0058B2
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-tags {
    font-size: 0;
    line-height: 1
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-tags .product-tags-item {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 24px;
    padding: 0 8px;
    text-align: center;
    background-color: #f5f5f5;
    color: #999;
    margin: 0 8px 8px 0
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-tags .product-tags-item:hover {
    color: #0058B2;
    background-color: #faede9
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action {
    margin-top: 8px
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action:before,
.page-products .product .product-list .product-item .product-item-intro .product-intro-action:after {
    display: table;
    content: ""
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action:after {
    clear: both
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action .wui-btn {
    float: left;
    width: 49%;
    padding: 0
}

.page-products .product .product-list .product-item .product-item-intro .product-intro-action .wui-btn:first-child {
    margin-right: 2%
}

@media only screen and (min-width: 1024px) {
    .page-products .product .product-list .product-item {
        margin-bottom: 24px;
        background-color: #f5f5f5
    }

    .page-products .product .product-list .product-item .product-item-intro {
        padding: 16px 24px
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-title {
        font-size: 24px;
        line-height: 32px
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-desc {
        margin: 12px 0
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-price {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        margin-bottom: 12px;
        color: #0058B2
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-tags .product-tags-item {
        line-height: 32px;
        padding: 0 16px;
        background-color: #fff;
        margin: 0 8px 8px 0
    }

    .page-products .product .product-list .product-item .product-item-intro .product-intro-action .wui-btn {
        float: none;
        width: auto;
        padding: 0 32px;
        margin-right: 16px
    }
}

.page-products-detail .detail .detail-intro .detail-intro-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #0058B2;
    margin-bottom: 8px
}

.page-products-detail .detail .detail-intro .detail-intro-price {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #0058B2
}

.page-products-detail .detail .detail-intro .detail-intro-attr {
    margin: 8px 0
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item {
    font-size: 16px;
    line-height: 24px
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item .detail-attr-label {
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    color: #0058B2
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item .detail-attr-value {
    display: inline-block;
    vertical-align: top;
    color: #666
}

.page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item .detail-attr-value .detail-attr-link {
    display: block
}

.page-products-detail .detail .detail-intro .detail-intro-number {
    padding: 8px 0
}

.page-products-detail .detail .detail-intro .detail-intro-action:before,
.page-products-detail .detail .detail-intro .detail-intro-action:after {
    display: table;
    content: ""
}

.page-products-detail .detail .detail-intro .detail-intro-action:after {
    clear: both
}

.page-products-detail .detail .detail-intro .detail-intro-action .wui-btn {
    float: left;
    width: 49%;
    padding: 0
}

.page-products-detail .detail .detail-intro .detail-intro-action .wui-btn:first-child {
    margin-right: 2%
}

.page-products-detail .detail .detail-content {
    padding: 24px 0
}

.page-products-detail .detail .detail-related .related-gallery {
    padding: 24px 0
}

.page-products-detail .detail .detail-tags .tags-wrap .tags-list {
    display: block;
    padding: 12px 0;
    font-size: 0;
    line-height: 1
}

.page-products-detail .detail .detail-tags .tags-wrap .tags-list .tags-item {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    font-size: 14px;
    margin: 0 8px 8px 0;
    color: #666;
    background-color: #f5f5f5
}

.page-products-detail .detail .detail-tags .tags-wrap .tags-list .tags-item:hover {
    color: #0058B2;
    background-color: #faede9
}

@media only screen and (min-width: 1024px) {
    .page-products-detail .detail .detail-intro .detail-intro-title {
        font-size: 24px;
        line-height: 32px;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid #f0f0f0
    }

    .page-products-detail .detail .detail-intro .detail-intro-price {
        font-size: 16px;
        line-height: 40px
    }

    .page-products-detail .detail .detail-intro .detail-intro-attr {
        margin: 0 0 16px;
        padding: 16px 0;
        border-bottom: 1px solid #f0f0f0
    }

    .page-products-detail .detail .detail-intro .detail-intro-attr .detail-attr-item {
        line-height: 32px
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 8px;
        color: #0058B2
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row {
        font-size: 0;
        line-height: 1
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col {
        display: inline-block;
        position: relative;
        vertical-align: top;
        margin: 0 12px 12px 0;
        overflow: hidden;
        padding: 4px;
        cursor: pointer;
        color: #333
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col:after {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 100%;
        border: 1px solid #d9d9d9
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col .detail-sku-icon {
        display: block;
        width: 32px;
        height: 32px;
        background-color: #ddd;
        opacity: 1
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col .detail-sku-text {
        display: block;
        height: 32px;
        line-height: 32px;
        background-color: #fff;
        font-size: 16px;
        min-width: 32px;
        font-weight: 700;
        text-align: center
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col:hover,
    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col.active {
        color: #0058B2
    }

    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col:hover:after,
    .page-products-detail .detail .detail-intro .detail-intro-sku .detail-sku-item .detail-sku-row .detail-sku-col.active:after {
        border: 2px solid #0058B2
    }

    .page-products-detail .detail .detail-intro .detail-intro-number {
        padding: 16px 0
    }

    .page-products-detail .detail .detail-intro .detail-intro-action .wui-btn {
        float: none;
        width: auto;
        padding: 0 32px;
        margin: 0 16px 16px 0
    }

    .page-products-detail .detail .detail-content {
        padding: 32px 0
    }

    .page-products-detail .detail .detail-related .related-gallery {
        padding: 32px 0
    }

    .page-products-detail .detail .detail-tags .tags-wrap .tags-list {
        padding: 24px 0
    }

    .page-products-detail .detail .detail-tags .tags-wrap .tags-list .tags-item {
        height: 40px;
        line-height: 40px;
        padding: 0 16px;
        font-size: 14px;
        margin: 0 12px 12px 0
    }
}

.page-shopping-cart .cart .cart-tips {
    margin-bottom: 16px
}

.page-shopping-cart .cart .cart-card {
    background-color: #fff
}

.page-shopping-cart .cart .cart-card .cart-card-hd {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #f0f0f0
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-title {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    -webkit-flex: auto;
    flex: auto
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-action {
    display: block;
    -webkit-flex: none;
    flex: none
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-action .cart-card-payment {
    display: block
}

.page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-action .cart-card-payment>img {
    display: block;
    width: auto;
    height: 28px
}

.page-shopping-cart .cart .cart-card .cart-card-bd {
    padding: 8px
}

.page-shopping-cart .cart .cart-card .cart-card-bd.cart-card-near {
    padding: 0
}

.page-shopping-cart .cart .cart-card .cart-card-ft {
    border-top: 1px solid #f0f0f0;
    padding: 8px
}

.page-shopping-cart .cart .cart-card+.cart-card {
    margin-top: 16px
}

.page-shopping-cart .cart .cart-wrap .cart-table {
    table-layout: auto;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%
}

.page-shopping-cart .cart .cart-wrap .cart-table>thead>tr>th {
    font-size: 14px;
    line-height: 32px;
    text-align: left;
    padding: 4px 8px;
    font-weight: 500;
    color: #333;
    overflow-wrap: break-word;
    border-bottom: 1px solid #d9d9d9;
    background-color: #f3f3f3
}

.page-shopping-cart .cart .cart-wrap .cart-table>tbody>tr>td {
    overflow-wrap: break-word;
    padding: 8px;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
    color: #666;
    border-bottom: 1px solid #f0f0f0
}

.page-shopping-cart .cart .cart-wrap .cart-table>tbody>tr:last-child>td {
    border: 0
}

.page-shopping-cart .cart .cart-wrap .cart-table .cart-table-shrink {
    white-space: normal;
    min-width: 1px
}

.page-shopping-cart .cart .cart-wrap .cart-table .cart-table-auto {
    width: 1px;
    word-break: keep-all;
    white-space: nowrap
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-cover {
    width: 32px;
    height: 32px
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-info {
    display: none;
    padding-left: 16px;
    line-height: 24px;
    color: #333
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-info:hover {
    color: #0058B2
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-price {
    font-weight: 500;
    color: #0058B2
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-action {
    text-align: center;
    cursor: pointer
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-action .cart-action-delete {
    display: inline-block;
    vertical-align: middle;
    color: #666
}

.page-shopping-cart .cart .cart-list .cart-item .cart-item-action .cart-action-delete:hover {
    color: #FE5050
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item:before,
.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item:after {
    display: table;
    content: ""
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item:after {
    clear: both
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-label {
    display: block;
    float: left;
    font-size: 14px;
    line-height: 24px;
    color: #666
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-value {
    display: block;
    float: right;
    font-size: 14px;
    line-height: 24px;
    color: #333
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent {
    font-weight: 500
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-label {
    font-size: 16px
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-value {
    font-size: 20px
}

.page-shopping-cart .cart .cart-cashier .cart-cashier-action {
    margin-top: 16px
}

.page-shopping-cart .cart .cart-action-list {
    font-size: 0;
    line-height: 1
}

.page-shopping-cart .cart .cart-action-list .cart-action-item {
    display: inline-block;
    vertical-align: middle
}

.page-shopping-cart .cart .cart-action-list .cart-action-item+.cart-action-item {
    margin-left: 16px
}

.page-shopping-cart .cart .cart-pay-list .cart-pay-item {
    padding: 8px;
    border-bottom: 1px solid #f0f0f0
}

.page-shopping-cart .cart .cart-pay-list .cart-pay-item:last-child {
    border: 0
}

@media only screen and (min-width: 1024px) {
    .page-shopping-cart .cart .cart-card .cart-card-hd {
        padding: 16px
    }

    .page-shopping-cart .cart .cart-card .cart-card-hd .cart-card-title {
        font-size: 18px
    }

    .page-shopping-cart .cart .cart-card .cart-card-bd {
        padding: 16px
    }

    .page-shopping-cart .cart .cart-card .cart-card-bd.cart-card-near {
        padding: 0
    }

    .page-shopping-cart .cart .cart-card .cart-card-ft {
        padding: 16px
    }

    .page-shopping-cart .cart .cart-card+.cart-card {
        margin-top: 24px
    }

    .page-shopping-cart .cart .cart-wrap .cart-table>thead>tr>th {
        padding: 8px 16px
    }

    .page-shopping-cart .cart .cart-wrap .cart-table>tbody>tr>td {
        padding: 16px
    }

    .page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: "center";
        align-items: center
    }

    .page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-cover {
        -webkit-flex: none;
        flex: none;
        width: 48px;
        height: 48px
    }

    .page-shopping-cart .cart .cart-list .cart-item .cart-item-wrap .cart-item-info {
        display: block
    }

    .page-shopping-cart .cart .cart-cashier {
        position: sticky;
        top: 96px
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-label {
        font-size: 16px;
        line-height: 32px
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item .cart-cashier-value {
        font-size: 16px;
        line-height: 32px
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-label {
        font-size: 18px
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-list .cart-cashier-item.cart-cashier-accent .cart-cashier-value {
        font-size: 24px
    }

    .page-shopping-cart .cart .cart-cashier .cart-cashier-action {
        margin-top: 24px
    }

    .page-shopping-cart .cart .cart-action-list .cart-action-item+.cart-action-item {
        margin-left: 24px
    }

    .page-shopping-cart .cart .cart-pay-list .cart-pay-item {
        padding: 16px
    }
}

.page-respond .respond .respond-wrap {
    text-align: center;
    padding: 20vh 0
}

.page-respond .respond .respond-wrap .respond-icon {
    margin-bottom: 24px;
    color: #26BB79
}

.page-respond .respond .respond-wrap .respond-title {
    font-size: 24px;
    line-height: 32px;
    color: #26BB79
}

.page-respond .respond .respond-wrap .respond-desc {
    font-size: 16px;
    line-height: 24px;
    color: #666
}

@media only screen and (min-width: 1024px) {
    .page-respond .respond .respond-wrap {
        text-align: center;
        padding: 22vh 0
    }

    .page-respond .respond .respond-wrap .respond-icon {
        margin-bottom: 32px
    }

    .page-respond .respond .respond-wrap .respond-title {
        font-size: 32px;
        line-height: 40px
    }

    .page-respond .respond .respond-wrap .respond-desc {
        font-size: 24px;
        line-height: 32px
    }
}

.page-respond .respond.error .respond-wrap .respond-icon {
    color: #FE5050
}

.page-respond .respond.error .respond-wrap .respond-title {
    color: #FE5050
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item {
    margin-bottom: 16px
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-title {
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
    background-color: #0058B2;
    color: #fff
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
    color: #0058B2
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-link {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-link:hover {
    color: #333
}

.page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item.sitemap-border {
    padding: 16px;
    border: 1px solid #d9d9d9
}

@media only screen and (min-width: 1024px) {
    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item {
        margin-bottom: 24px
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-title {
        font-size: 28px;
        line-height: 48px;
        padding: 16px 0
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-subtitle {
        font-size: 18px;
        margin-bottom: 12px
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item .sitemap-item-link {
        font-size: 16px;
        line-height: 32px
    }

    .page-sitemap .sitemap .sitemap-wrap .sitemap-list .sitemap-item.sitemap-border {
        padding: 24px
    }
}

.page-factory .factory .detail-tabs {
    display: none;
    line-height: 1;
    font-size: 0;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 32px
}

.page-factory .factory .detail-tabs .wui-btn {
    margin: 0 8px
}

.page-factory .factory .factory-list .factory-item {
    display: block
}

.page-factory .factory .factory-list .factory-item .factory-item-cover {
    width: 100%
}

.page-factory .factory .factory-list .factory-item .factory-item-intro {
    width: 100%
}

.page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-title {
    text-align: center;
    font-size: 20px;
    margin: 12px 0;
    color: #0058B2
}

.page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-desc {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin-bottom: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-word;
    white-space: normal;
    -webkit-line-clamp: 6
}

.page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-action {
    display: none
}

@media only screen and (min-width: 1024px) {
    .page-factory .factory .detail-tabs {
        display: block
    }

    .page-factory .factory .factory-list .factory-item {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: "center";
        align-items: center
    }

    .page-factory .factory .factory-list .factory-item .factory-item-cover {
        -webkit-flex: auto;
        flex: auto;
        width: calc(50% - 16px);
        overflow: hidden
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro {
        -webkit-flex: auto;
        flex: auto;
        width: calc(50% + 16px);
        padding: 32px 0
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap {
        padding: 32px;
        overflow: hidden;
        background-color: #f5f5f5
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-title {
        text-align: left;
        font-size: 36px;
        margin: 0 0 16px
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-desc {
        font-size: 16px;
        line-height: 28px
    }

    .page-factory .factory .factory-list .factory-item .factory-item-intro .factory-intro-wrap .factory-intro-action {
        display: block
    }

    .page-factory .factory .factory-list .factory-item:nth-child(odd) .factory-item-cover {
        order: 2
    }

    .page-factory .factory .factory-list .factory-item:nth-child(odd) .factory-item-intro {
        order: 1
    }
}

.page-downloads .downloads .downloads-wrap .downloads-item {
    position: relative;
    display: block
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: "center";
    align-items: center
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap {
    -webkit-flex: auto;
    flex: auto;
    width: 0;
    padding: 0 4px
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-title>a {
    color: rgba(255, 255, 255, 0.85)
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-title>a:hover {
    color: #0058B2
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-wrap .downloads-intro-desc {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action {
    -webkit-flex: none;
    flex: none;
    padding: 0 4px
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action .downloads-action-inner {
    display: block;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #fff;
    padding: 0 16px;
    background-color: #0058B2;
    border-radius: 16px
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action .downloads-action-inner:hover {
    background-color: #a33e1e
}

.page-downloads .downloads .downloads-wrap .downloads-item .downloads-item-intro .downloads-intro-action .downloads-action-inner>i {
    font-size: 14px
}